home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
THINKC
/
TCL1
/
CTALK
/
CTALK_EX.C
next >
Wrap
C/C++ Source or Header
|
1990-08-09
|
406b
|
19 lines
#include "CTalk.h"
main()
{
CTalk* human;
human=new(CTalk);
human->ITalk();
human->SetRate(150);
human->SetPitch(100);
human->Say("\pHello, you little person");
human->SetRate(50);
human->Say("\pHello, you little person");
human->SetRate(150);
human->SetPitch(200);
human->Say("\pHello, you little person");
human->SetPitch(80);
human->Say("\pHello, you little person");
human->Dispose();
}